home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / cc / sprite / RCS / xm-m68k.h,v < prev   
Encoding:
Text File  |  1989-09-26  |  2.1 KB  |  94 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.12.21.00.19;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     89.02.24.13.36.43;  author rab;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/* Configuration for GNU C-compiler for Motorola 68000 family.
  30.    Copyright (C) 1987 Free Software Foundation, Inc.
  31.  
  32. This file is part of GNU CC.
  33.  
  34. GNU CC is distributed in the hope that it will be useful,
  35. but WITHOUT ANY WARRANTY.  No author or distributor
  36. accepts responsibility to anyone for the consequences of using it
  37. or for whether it serves any particular purpose or works at all,
  38. unless he says so in writing.  Refer to the GNU CC General Public
  39. License for full details.
  40.  
  41. Everyone is granted permission to copy, modify and redistribute
  42. GNU CC, but only under the conditions described in the
  43. GNU CC General Public License.   A copy of this license is
  44. supposed to have been given to you along with GNU CC so you
  45. can know your rights and responsibilities.  It should be in a
  46. file named COPYING.  Among other things, the copyright notice
  47. and this notice must be preserved on all copies.  */
  48.  
  49.  
  50. /* #defines that need visibility everywhere.  */
  51. #define FALSE 0
  52. #define TRUE 1
  53.  
  54. /* This describes the machine the compiler is hosted on.  */
  55. #define HOST_BITS_PER_CHAR 8
  56. #define HOST_BITS_PER_SHORT 16
  57. #define HOST_BITS_PER_INT 32
  58. #define HOST_BITS_PER_LONG 32
  59.  
  60. /* target machine dependencies. */
  61. #include "tm-sun3.h.h"
  62.  
  63. /* Arguments to use with `exit'.  */
  64. #define SUCCESS_EXIT_CODE 0
  65. #define FATAL_EXIT_CODE 33
  66.  
  67. /* Eliminate the startfile spec, since crt is already in Sprite's libc.a. */
  68. #define STARTFILE_SPEC ""
  69.  
  70. /* Add linker switches to start at "start", which is needed for Sprite.
  71.  * Also, get rid of local symbols from symbol tables. */
  72. #define LINK_SPEC "-X %{!e:-e start}"
  73.  
  74. @
  75.  
  76.  
  77. 1.1
  78. log
  79. @Initial revision
  80. @
  81. text
  82. @d32 2
  83. a33 3
  84. /* target machine dependencies.
  85.    tm.h is a symbolic link to the actual target specific file.   */
  86. #include "tm.h"
  87. d39 7
  88. a45 4
  89. /* If compiled with GNU C, use the built-in alloca */
  90. #ifdef __GNUC__
  91. #define alloca __builtin_alloca
  92. #endif
  93. @
  94.